home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_pas
/
mkscren2
/
capital.pas
next >
Wrap
Pascal/Delphi Source File
|
1987-04-09
|
147b
|
7 lines
procedure capitalize(var str : str80);
var
index : integer;
begin
for index := 1 to length(str) do str[index] := upcase(str[index]);
end;